bitkeeper revision 1.7.3.27 (3e003f291O_YZUk9AXbU7gc5HK9Vyw)
authorlynx@idefix.cl.cam.ac.uk <lynx@idefix.cl.cam.ac.uk>
Wed, 18 Dec 2002 09:26:01 +0000 (09:26 +0000)
committerlynx@idefix.cl.cam.ac.uk <lynx@idefix.cl.cam.ac.uk>
Wed, 18 Dec 2002 09:26:01 +0000 (09:26 +0000)
test

xenolinux-2.4.16-sparse/arch/xeno/drivers/dom0/dom0_core.c
xenolinux-2.4.16-sparse/arch/xeno/drivers/dom0/dom0_memory.c

index 43bc15d96d70ae32e501d35f4cc99d3c09ffbb5b..d3c1f1149d02a8c857213cdd467746e6b22c4c0e 100644 (file)
@@ -153,7 +153,7 @@ static ssize_t dom_mem_write(struct file * file, const char * buff,
     
     copy_from_user(&addr, (unsigned long *)buff, sizeof(addr));
     
-       printk("bd240 debug: dom_mem_write addr %lx\n", addr);
+       printk(KERN_ALERT "bd240 debug: dom_mem_write addr %lx\n", addr);
 
     if(direct_disc_unmap(addr, mem_data->pfn, mem_data->tot_pages) == 0){
         return sizeof(addr);
index b5cbf75f679cfd8164ca9bdd3e3057d80adf2f2c..8d8f82c62f1a5e8b0b8ef5b97010be86a8888ad0 100644 (file)
@@ -182,7 +182,7 @@ unsigned long direct_mmap(unsigned long phys_addr, unsigned long size,
     dmmap->addr = addr;
     list_add(&dmmap->list, &current->mm->context.direct_list);
 
-       printk("bd240 debug: direct_mmap: enlisting addr %lx\n", dmmap->addr);
+       printk(KERN_ALERT "bd240 debug: direct_mmap: enlisting addr %lx\n", dmmap->addr);
 
     /* and perform the mapping */
     if(flag == MAP_DISCONT){
@@ -332,13 +332,13 @@ int direct_disc_unmap(unsigned long from, unsigned long first_pg, int tot_pages)
     struct list_head * curr;
     struct list_head * direct_list = &current->mm->context.direct_list;    
 
-       printk("bd240 debug: direct_disc_unmap: from %lx\n", from);
+       printk(KERN_ALERT "bd240 debug: direct_disc_unmap: from %lx\n", from);
 
     curr = direct_list->next;
     while(curr != direct_list){
         node = list_entry(curr, direct_mmap_node_t, list);
 
-               printk("bd240 debug: direct_disc_unmap: node %lx\n", node->addr);
+               printk(KERN_ALERT "bd240 debug: direct_disc_unmap: node %lx\n", node->addr);
 
         if(node->addr == from)
             break;